home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / getgroups.c < prev    next >
C/C++ Source or Header  |  1988-06-19  |  1KB  |  58 lines

  1. /* 
  2.  * getgroups.c --
  3.  *
  4.  *    Procedure to map from Unix getgroups system call to Sprite.
  5.  *
  6.  * Copyright 1986 Regents of the University of California
  7.  * All rights reserved.
  8.  */
  9.  
  10. #ifndef lint
  11. static char rcsid[] = "$Header: getgroups.c,v 1.1 88/06/19 14:31:23 ouster Exp $ SPRITE (Berkeley)";
  12. #endif not lint
  13.  
  14. #include "sprite.h"
  15. #include "proc.h"
  16.  
  17. #include "compatInt.h"
  18.  
  19.  
  20. /*
  21.  *----------------------------------------------------------------------
  22.  *
  23.  * getgroups --
  24.  *
  25.  *    Procedure to map from Unix getgroups system call to 
  26.  *    Sprite Proc_GetGroupIDs.
  27.  *
  28.  * Results:
  29.  *      UNIX_SUCCESS    - the call was successful.
  30.  *      UNIX_ERROR      - the call was not successful.
  31.  *                        The actual error code stored in errno.
  32.  *
  33.  * Side effects:
  34.  *    None.
  35.  *
  36.  *----------------------------------------------------------------------
  37.  */
  38.  
  39. int
  40. getgroups(gidsetlen, gidset)
  41.     int gidsetlen;
  42.     int *gidset;
  43. {
  44.     ReturnStatus status;    /* result returned by Proc_GetGroupIDs */
  45.     int    numGids;
  46.  
  47.     status = Proc_GetGroupIDs(gidsetlen, gidset, &numGids);
  48.     if (status != SUCCESS) {
  49.     errno = Compat_MapCode(status);
  50.     return(UNIX_ERROR);
  51.     } else {
  52.     if (numGids > gidsetlen) {
  53.         numGids = gidsetlen;
  54.     }
  55.     return(numGids);
  56.     }
  57. }
  58.